body{ 
       font-family: 'Montserrat', sans-serif;
       margin: 0;
       background-color: black;
       color: white;
       /* using hideen means it will not scroll on complete page  */
       overflow: hidden;
}

.main{
    display: flex;
    /* giving complete screen size with the viewport */
    height: 100vh;
    padding: 0.5rem;

}

/* creating side bar complete */
.sidebar{
    background-color:black;
    width: 340px;
    border-radius: 1rem; /*1rem = 16px*/
    margin-right: 0.5rem;
}

.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5 rem 0.75rem ; /* giving padding with font size in form of rems to make responsive */
}

.nav-option{
    line-height: 2.5rem ;
    opacity: 0.7; /* reduse opacity*/
    padding: 0.5rem 0.75rem;
}
    /* redusing opacity first and incresing letter in hover to make more attractive */
.nav-option:hover {
    opacity: 1;
}

.nav-option i {
    font-size: 1.25rem;
}
.nav-option a {
    font-size: 1rem;
    margin-left: 1rem ;
}

a{
    text-decoration: none;
    color: white;
}

.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.5rem;
    
}
.options{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.lab-option img{
    height: 1.25rem;
    width: 1.25rem;
}
.icons{
    font-size: 1.25rem;
    display: flex;
}
.icons i {
    opacity: 0.7;
    margin-right: 1rem;
}
.icons i:hover {
    opacity: 1;
}

.box{
    background-color: #232323;
    height: 8rem;
    border-radius: 1rem;
    margin:0.75rem 0 1.75rem 0 ;
    padding: 0.5rem 1rem;
}
.box-p1{
    font-size: 1rem;
    font-weight: 500;

}
.box-p2{
    font-size: 0.85rem;
    opacity: 0.75;
}
.badge{
    background-color: white;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem ;
    font-weight: 700;
    /* margin-top: 0.5rem; */
    height:2rem ;
    width: fit-content;
}



/* creating main content */
.main-content{
    background-color: black ;
    /* flex 1 means remaining size goes to main box*/
    flex: 1;
    border-radius: 1rem;
    overflow: auto; /* we need scroll bar so make overflow on auto*/
    padding: 0 1.5rem 0 1.5rem;

}
.sticky-nav{
    position: sticky;
    top: 0;
    background-color: #232323;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 0;
    z-index: 10;   /* z index to set sticky bar over the main content so that it will not overlap*/
}

.sticky-nav-icon{
    margin-left: 0.75rem;
}
.sticky-nav-option{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.dark-badge {
    background-color: black;
    color: white;
}
.nav-item {
    margin-right: 1rem;
}

@media (max-width: 1000px) {
    .hide {
        display: none;
    }
    
}
.card-container{
    display: flex;
    flex-wrap: wrap;
    
}
.card{
    background-color: #232323;
    border-radius: 0.5rem;
    width: 150px;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}
.card-img{
    width: 100%;
    border-radius: 0.5rem;
}
.card-title{
    font-weight: 600;
}
.card-info{
    font-size: 0.85rem;
    opacity: 0.75;
}

.footer{
    height: 250px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.line{
    height: 50%;
    width: 90%;
    border-top: 1px solid white;
    opacity: 0.4;
}


/* creating music player */

.music-player{
    background-color: black;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 72px;
}
.music-player{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player{
   width: 50%;
}
.player-controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.player-control-icon{
    height: 1rem;
    margin-right: 2rem;
    opacity: 0.7;
}
.player-control-icon:hover {
    opacity: 1;
}
.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}
.prog-bar{
    width: 60%;
    color: blue;
}



.album{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.music{
    opacity: 0.7;
}
.album-img{
    display: flex;
    justify-content: center;
    align-items: center;
  
}
.img-a{
    height:70px;

}
.img1{
    height: 1.5rem;
    margin-left: 1rem;
    opacity: 0.4;
}
.img1:hover{
    opacity: 1
}

.img2{
    height: 2.2rem;
    margin-left: 1rem;
    opacity: 0.7;
}
.img2:hover{
    opacity: 2;
}
.p-album{
    align-items: center;
}

   
.controls{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-1{
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-i1{
    height: 1rem;
    margin-right: 1rem;
    opacity: 0.5;
}
.con-i1:hover{
    opacity: 0.8;
}

.icon-2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.con-i2{
    height: 2rem;
    margin-right: 1rem;
    opacity: 0.8;
}
.con-i2:hover{
    opacity: 1;
}

